@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	/* font-family: "PingFang SC", "HanHei SC", "Helvetica Neue", Microsoft Yahei, "Helvetica", "STHeitiSC-Light", "Arial", sans-serif; */

}

img {
	display: inline-block;
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
	cursor: pointer;
	outline: none;
}

.block {
	padding: 20px 0;
}

.cl {
	clear: both;
}



/* 主菜单 */

.head {
	transition: all 0.7s ease-in-out;
	position: fixed;
	width: 100%;
	background: rgba(0, 0, 0, 0.2);
	height: 80px;
	z-index: 1000;
	top: 0;

	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}



.head .navbox {
	/* width: 100%; */
	margin: 0 auto;
	height: auto;
	/* overflow: hidden; */

	display: flex;
	flex-wrap: wrap;
	flex-direction: row;

	align-items: center;
	justify-content: flex-end;
}

.logo {
	float: left;
	position: relative;
	width: 18%;
	height: 80px;
	overflow: hidden;
}

.logo img {
	position: absolute;
	left: 0%;
	top: 50%;
	transform: translate(0%, -50%);
	max-width: 100%;
	max-height: 80px;

}

.logo img.lg_heise {
	/* display: block; */
	opacity: 1;
	transition: all 0.7s ease-in-out;
}

.logo img.lg_baise {
	/* display: none; */
	opacity: 0;
	transition: all 0.7s ease-in-out;
}

.logo a {
	display: block;
}

.tel {
	width: auto;
	height: auto;
	overflow: hidden;
	float: right;
	color: #fff;
	font-size: 18px;
	line-height: 80px;
	text-align: right;

	margin-left: auto;

	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: center;
}

.tel i {
	font-size: 20px;
	margin-right: 10px;
}

.tel img {
	width: 30px;
}

.head .nav {
	display: block;
	float: right;
	/* width: 100%; */
	width: calc(80% - 250px);

	display: flex;
	align-items: center;
}

.head .nav .nav_pc {
	width: 100%;
}

.head .nav ul li {
	float: left;
	position: relative;
	box-sizing: border-box;
	z-index: 999;
	height: 80px;
}

.head .nav ul li:first-child {}

/* .head .nav ul li .f_a {
	position: relative;
	
	line-height: 80px;
	display: block;
	text-align: center;
	font-size: 16px;
	color: #000;
	text-transform: uppercase
}
.head .nav ul li .f_a span{
	
}
.head .nav ul li .f_a .en{
	opacity: 1;
	transition: all 0.3s ease-in-out;
}
.head .nav ul li .f_a .cn{
	opacity: 0;
	transition: all 0.3s ease-in-out;
}
.head .nav ul li.active .f_a span{
	color: #cf1322;
	transition: all .3s;
}
.head .nav ul li:hover .f_a span{
	color: #cf1322;
	transition: all .3s;
} */

.head .nav ul li a {

	transition: all 0.4s ease-in-out;
	/* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4); */

	overflow: hidden;
	display: block;
	width: 100%;

}

.head .nav ul li::before {
	content: "";
	position: absolute;
	width: 0;
	height: 3px;
	background: #0c1d65;
	left: 50%;
	top: 98%;
	transform: translate(-50%, -50%);

	transition: all .3s ease-in-out;
}

.head .nav ul li:hover::before,
.head .nav ul li.active::before {

	width: 50%;
	left: 50%;
	top: 98%;
	transform: translate(-50%, -50%);

}

.head .nav ul li a span {
	display: block;
	line-height: 30px;
	text-align: center;
	z-index: 9999;
	width: inherit;
	text-transform: uppercase;
	color: #fff;
	font-size: 18px;
}

.head .nav ul li a .en {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	opacity: 1;
	/* transition: all 0.3s ease-in-out; */
}

.head .nav ul li a .ch {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	/* transition: all 0.7s ease-in-out; */
}

.head .nav ul li a:hover .en {
	opacity: 0;
	/* transition: all 0.3s ease-in-out; */
}

.head .nav ul li a:hover .ch {
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	opacity: 1;
	/* transition: all 0.7s ease-in-out; */
}


/* 滚动加背景色 */
.head.nav_fixed {
	transition: all 0.6s ease-in-out;
	background: rgba(255, 255, 255, 1);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

/* 滚动加背景色 */
.m_img.nav_fixed {
	transition: all 0.6s ease-in-out;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}


.head.nav_fixed .nav ul li a span {
	color: #333;
}

.head.nav_fixed .tel {
	color: #333;
}

.head.nav_fixed .tel i {
	color: #333;
}



.head.nav_fixed .logo img.lg_heise {
	opacity: 0;
	transition: all 0.7s ease-in-out;
}

.head.nav_fixed .logo img.lg_baise {
	opacity: 1;
	transition: all 0.7s ease-in-out;
}



.head .nav ul li .s_navbox {
	display: none;
	position: absolute;

	/* left: 0;
	top: 80px;
	width: 100%; */

	left: 0;
	top: 80px;
	width: 100%;

	background: rgba(255, 255, 255, 1);
	z-index: 9999;
	box-sizing: border-box;
	
	box-shadow: 0 13px 10px 0px rgba(151, 150, 150, 0.22);
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.head .nav ul li .s_navbox .s_a a {
	color: #111;
	font-size: 14px;
	text-transform: uppercase;
	text-decoration: none;
	display: block;
	text-align: center;
	height: auto;
	line-height: 45px;
	border-bottom: 1px solid #eee;
	transition: all .36s ease;
}

.head .nav ul li .s_navbox .s_a a:last-child {
	border-bottom: 0px solid #fff;
}

.head .nav ul li .s_navbox .s_a a:hover {
	background: #0c1d65;
	color: #fff;
}

.m_nav {
	display: none;
}

.headlf .m_logo {
	display: none;
}

.headrg .m_menuimg {
	display: none;
}


/* 轮播图 */
.slider {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.slideBox .hd {
	height: 10px;
	z-index: 1;
	overflow: hidden;
	position: absolute;
	left: 50%;
	bottom: 20px;
	transform: translateX(-50%);
	z-index: 1;
}

.slideBox .hd ul {
	text-align: center;
	padding-top: 5px;
}

.slideBox .hd ul li {
	cursor: pointer;
	float: left;
	margin-right: 5px;
	width: 30px;
	height: 10px;
	line-height: 14px;
	text-align: center;
	background: #fff;
}

.slideBox .hd ul .on {
	background: #00a2ff;
	color: #fff;
}

.slideBox .bd {
	position: relative;
	z-index: 0;
}

.slideBox .bd li img {
	width: 100%;
	/* height: 100vh; */
	vertical-align: top;
}


/* 测试轮播图 */
.img_cut {
	background: no-repeat center center;
	background-size: cover;
	overflow: hidden;
	display: block;
	width: 100%;
	height: auto;
}

.iBannerHome .pd img {
	transition: all 3s ease-out;
}

.iBanner {
	/* position: absolute;
	top: -48px; */
}

.iBanner .swiperArrow {
	display: block;
}

.iBanner .swiperPrev {
	left: 80px;
}

.iBanner .swiperNext {
	right: 80px;
}

.iBanner .swiperDots {
	display: block;
}

.iBanner .pd {
	overflow: hidden;
	display: block;
}

.iBanner .pd img {
	width: 100%;
	/* height: calc(100vh - 50px); */
	/* 导航不固定 */
	height: 100vh;
}

.iBannerHome .pd img {
	transform: scale(1);
}

.iBannerHome .swiper-slide-active .pd img {
	transform: scale(1);
}



@media screen and (max-width:1024px) {
	body {
		padding-top: 0;
	}

	.iBanner .pd img {
		height: auto;
	}

}


@media screen and (max-width:540px) {

	.iBanner .swiperArrow {
		display: block;
	}

	.iBanner .swiperPrev {
		left: 20px;
	}

	.iBanner .swiperNext {
		right: 20px;
	}
}



/*小于1600大于1200稍微调整下字体*/
@media screen and (max-width: 1600px) and (min-width:1200px) {
	.nav ul li .f_a {
		font-size: 16px;
	}

	.nav ul li .s_navbox .s_a a {
		font-size: 16px;
	}

	.nav ul li .s_navbox .s_a {
		width: 100%;
	}


	.head .nav ul li a span {
		font-size: 14px;
	}

	.head .tel {
		font-size: 14px;
	}

	.head .nav ul li .s_navbox .s_a a {
		font-size: 12px;
	}
}


/*移动端导航*/
@media screen and (max-width: 1200px) and (min-width: 960px) {


	.head .nav {
		display: block;
		float: right;
		/* width: 100%; */
		width: calc(80% - 220px);
	}

	.head .nav ul li a span {
		font-size: 14px;
	}

	.head .tel {
		width: 190px;
		font-size: 14px;
	}

}

@media screen and (max-width: 960px) and (min-width: 0px) {
	.msgNum {
		display: none;
	}

	.slider {
		margin-top: 0;
	}

	.head {
		display: none;
	}

	.m_img {
		display: block;
		height: 50px;
		/* background: #fff; */
		position: fixed;
		top: 0px;
		left: 0px;
		width: 100%;
		z-index: 9999;
		/* border-bottom: 1px solid #ddd; */
		overflow: hidden;
	}

	.m_img .headlf {
		padding-top: 2px;
		padding-left: 5px;
		float: left;
	}

	.m_img .headlf .m_logo {
		position: absolute;
		height: 45px;
		display: block;
		left: 10px;
	}



	.m_img .headlf .m_logo.caise {
		opacity: 0;
	}

	.m_img.nav_fixed .headlf .m_logo.caise {
		opacity: 1;
	}

	.m_img.nav_fixed .headlf .m_logo {
		opacity: 0;
	}

	.m_img .headrg .m_menuimg.caise {
		opacity: 0;
	}

	.m_img.nav_fixed .headrg .m_menuimg.caise {
		opacity: 1;
	}

	.m_img.nav_fixed .headrg .m_menuimg {
		opacity: 0;
	}


	.m_img .headrg {
		padding-right: 3%;
		padding-top: 15px;
		float: right;
	}

	.m_img .headrg a .m_menuimg {
		position: absolute;
		right: 10px;
		height: 16px;
		vertical-align: top;
		display: block;
	}

	.m_nav {
		display: block;
		position: fixed;
		top: 0px;
		left: 0px;
		width: 0px;
		height: 0px;
		overflow: hidden;
		z-index: 10000;
	}

	.m_nav .closecover {
		position: absolute;
		width: 100%;
		height: 100%;
		background: #0b0d19;
		filter: alpha(opacity=0);
		opacity: 0;
		left: 0px;
		top: 0px;
		z-index: 1;
	}

	.m_nav .closeicon {
		position: absolute;
		width: 20%;
		left: 5px;
		top: 3%;
		z-index: 100;
		text-align: center;
		filter: alpha(opacity=0);
		opacity: 0;
	}

	.m_nav .m_navList {
		position: absolute;
		width: 80%;
		right: 0px;
		top: 0px;
		background: #0b0d19;
		height: 100%;
		z-index: 100;
		right: -80%;
		overflow-y: scroll;
	}

	.m_nav .m_navList ul {
		padding-left: 5%;
		padding-right: 5%;
	}

	.m_nav .m_navList ul li {
		border-bottom: 1px solid #232530
	}

	.m_nav .m_navList ul li a {
		display: block;
		height: 45px;
		color: #fff;
		line-height: 45px;
		padding-left: 5%;
		font-size: 16px;
	}

	.m_nav .m_navList ul li .m_f_a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
	}

	.m_nav .m_navList ul li .m_f_a a {
		flex: 1;
	}

	.m_nav .m_navList ul li .m_f_a i {
		width: 40px;
		height: 35px;
		box-sizing: border-box;
		padding: 0 5px;
		display: block;
	}

	.icon {
		background: url(../images/plus.png) 100% no-repeat;
		background-position: 50% 50%;
		-webkit-transition: all 0s;
		-moz-transition: all 0s;
		transition: all 0s;
	}

	.icon_on {
		background: url(../images/reduce.jpg) 50% no-repeat !important;
		background-position: 50% 50%;
		-webkit-transition: all 0s;
		-moz-transition: all 0s;
		transition: all 0s;
	}

	.m_nav .m_navList ul li .m_s_nav {
		display: none;
		width: 100%;
	}

	.m_nav .m_navList ul li .m_s_nav a {
		display: block;
		height: 40px;
		line-height: 40px;
		font-size: 16px;
		padding-left: 10%;
		overflow: hidden;
		white-space: nowrap;
		width: 90%;
		text-overflow: ellipsis;
		text-decoration: none;
	}

}



/* 搜索 */
.Search .text {
	width: 70%;
	height: 56px;
	padding-left: 15px;
	line-height: 56px;
}

.Search .submit {
	width: 27%;
	height: 56px;
	text-align: center;
	line-height: 56px;
	font-size: 16px;
}

.pop {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	background: rgba(0 0 0 / 0.8);
	display: none;
}


.searchPop .Search {
	width: 50%;
}

.searchClose {
	position: absolute;
	top: 150px;
	right: 10vw;
	cursor: pointer;
	opacity: 0.8;
	transition: all .36s;
}

.searchClose:hover {
	opacity: 1;
	transform: rotate(180deg);
}




/* ===================首页banner样式========================== */
.banner {
	position: relative;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100vh;

}

.banner a {
	display: block;
	width: 100%;
}

.ban-imgpc,
.ban-imgmb {
	width: 100%;
	object-fit: cover;
	height: 100vh;
}

.ban-imgpc {
	min-height: 400px;
}

.ban-imgmb {
	min-height: 360px;
	display: none;
}

.ban-videopc {
	width: 100%;
	object-fit: cover;
	height: 100vh;
}


.banner .swiper-slide::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	background: rgba(0 0 0 / 0.1);
}

.banner .swiper-pagination {
	bottom: 3%;
}

.banner .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 12px;
}

.banner .swiper-pagination-bullet {
	background: #FFF;
	position: relative;
	opacity: .58;
}

.banner .swiper-pagination-bullet-active {
	opacity: 1;
	background: #0c1d65;
}

.banner .swiper-pagination-bullet-active:after {
	content: "";
	width: 20px;
	height: 20px;
	border: 1px solid #fff;
	position: absolute;
	border-radius: 20px;
	left: 50%;
	top: 50%;
	margin-left: -10px;
	margin-top: -10px;
}



/* banner大小渐变 */
.banner .swiper-wrapper img{
	position: relative;
	opacity: 0.95;
	-webkit-transform:scale(1);
	transform:scale(1);
	-webkit-transition:all 3s ease-out 0.3s;
	transition:all 3s ease-out 0.3s;
}

.banner .swiper-wrapper .swiper-slide-active img{
	opacity: 1;
	-webkit-transform:scale(1.05);
	transform:scale(1.05);
	-webkit-transition:all 3s ease-out 0.3s;
	transition:all 3s ease-out 0.3s;
}


/* banner文字分离 */
.banner-words {
	position: absolute;
	z-index: 2;
	width: 100%;
	left: 8vw;
	top: 50%;
	transform: translate(0vw, -50%);
	text-align: left;
}


/* .banner-words h1:after,
.banner-words h1:before {
	content: "";
	position: absolute;
	height: 3px;
	width: 60px;
	top: 50%;
	margin-top: 2px;
}

.banner-words h1:after {
	left: -68px;
	background: #0c1d65;
}

.banner-words h1:before {
	right: -68px;
	background: #0c1d65;
} */



.banner-words h1 {
	width: 100%;
	font-size: 50px;
	color: #0c1d65;
	opacity: 0;
	margin: 20px auto;
	font-weight: 600;	
	/* background-image: -webkit-linear-gradient(to right, #0c1d65, #0c1d65);
	background-image: linear-gradient(to right, #0c1d65, #0c1d65);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent; */
}

.banner-words h3 {
	width: 100%;
	font-size: 26px;
	color: #0c1d65;
	opacity: 0;
	margin: 20px auto;
	font-weight: lighter;
}

.banner-words h6 {
	width: 100%;
	font-size: 16px;
	color: #0c1d65;
	opacity: 0;
	margin: 20px auto;
	font-weight: lighter;
}

.banner-words p {
	width: 100%;
	font-size: 14px;
	color: #FFF;
	margin-top: 10px;
	opacity: 0;
}


.banner_baise {
	width: 80px;
	height: 3px;
	background: #0c1d65;
	margin: 30px 0;
	opacity: 0;
}


/* .swiper-slide-active .banner-words h6:after,
.swiper-slide-active .banner-words h6:before {
	animation: banToun 1.2s ease both 1s;
} */


.swiper-slide-active .banner-words h1 {
	animation: banToun 0.5s ease both 0.8s;
}

.swiper-slide-active .banner-words h3 {
	animation: banToun 0.5s ease both 0.9s;
}

.swiper-slide-active .banner-words h6 {
	animation: banToun 0.5s ease both 1.0s;
}

.swiper-slide-active .banner-words p {
	animation: banToun 0.5s ease both 1.1s;
}

.swiper-slide-active .banner-words .anniu_btn_text {
	animation: banToun 0.5s ease both 1.2s;
}

.swiper-slide-active .banner-words .banner_baise {
	animation: banToun 0.5s ease both 0.85s;
}


@keyframes banToun {
	0% {
		opacity: 0;
		transform: translateY(180px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.btns i {
	font-size: 3vw;
	color: #0c1d65;
}



/* 按钮样式 */
.anniu_btn_text {
	display: inline-block;
	font-size: 16px;
	line-height: 50px;
	text-align: center;
	color: #0c1d65;
	width: 150px;
	box-sizing: border-box;
	text-transform: uppercase;
	/* background-image: linear-gradient(325deg, #0c1d65 30%, #fff); */
	position: relative;
	z-index: 2;
	margin: 30px auto;
	transition: all .3s;
}

.anniu_btn_text:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border: 1px solid #0c1d65;
	z-index: 2;
}

.anniu_btn_text:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0;
	/* -webkit-transform: scale(3);
    transform: scale(3); */
	background-image: linear-gradient(to right, #0c1d65, #0c1d65);
	-webkit-transition: all .6s ease;
	transition: all .6s ease;
}

.anniu_line {
	position: absolute;
	left: 100%;
	top: 50%;
	height: 1px;
	width: 20%;
	-webkit-transition: all .6s ease;
	transition: all .6s ease;
	background-image: linear-gradient(325deg, #0c1d65 30%, #0c1d65);
	z-index: 0;
	opacity: 1;
}

.anniu_min_icon {
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 22px;
	height: 22px;
}

.anniu_min_icon:after {
	content: "";
	position: absolute;
	right: 10%;
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(-45deg);
	transform: translateY(-50%) rotate(-45deg);
	width: 60%;
	height: 60%;
	border-right: 1px solid #0c1d65;
	border-bottom: 1px solid #0c1d65;
}

.anniu_max_icon {
	position: absolute;
	right: -12px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
}

.anniu_max_icon:after {
	content: "";
	position: absolute;
	right: 10%;
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(-45deg);
	transform: translateY(-50%) rotate(-45deg);
	width: 60%;
	height: 60%;
	border-right: 1px solid #0c1d65;
	border-bottom: 1px solid #0c1d65;
}

.anniu_btn_text:hover{
	color: #fff;
}

.anniu_btn_text:hover:before {
	opacity: 1;
}

.anniu_btn_text:hover .anniu_line {
	opacity: 1;
	width: 30%;
	background-image: linear-gradient(to right, #0c1d65, #0c1d65);
}

.anniu_btn_text:hover .anniu_min_icon:after {
	border-right: 1px solid #0c1d65;
	border-bottom: 1px solid #0c1d65;
}

.anniu_btn_text:hover .anniu_max_icon:after {
	border-right: 1px solid #0c1d65;
	border-bottom: 1px solid #0c1d65;
}





/*中屏幕*/
@media screen and (min-width: 760px) and (max-width: 1200px) {
	
	.banner {
		position: relative;
		top: 0;
		left: 0;
		z-index: 1;
		height: 100vh;
		width: 100vw;
	}
	
	.banner-words {
		position: absolute;
		z-index: 2;
		width: 100%;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		text-align: center;
	}
	
	
	.banner-words h1 {
		font-size: 40px;
	}
	
	.banner-words h3 {
		font-size: 20px;
		margin: 10px auto;
		font-weight: lighter;
	}
	
	.banner-words h6 {
		font-size: 14px;
		margin: 10px auto;
		font-weight: lighter;
	}
	
	.banner-words p {
		font-size: 14px;
		margin: 10px auto;
		font-weight: lighter;
	}
	
	.banner_baise {
		width: 80px;
		height: 2px;
		background: #fff;
		margin: 25px auto;
		opacity: 0;
	}

	.anniu_btn_text{
		width: 120px;
		line-height: 40px;
		font-size: 14px;
		margin: 10px 0;
	}
	
	
}


/*小屏幕*/
@media screen and (min-width: 0px) and (max-width: 760px) {
	
	.banner-words h1 {
		font-size: 24px;
	}
	
	.banner-words h3 {
		font-size: 20px;
		margin: 10px auto;
		font-weight: lighter;
	}
	
	.banner-words h6 {
		font-size: 14px;
		margin: 10px auto;
		font-weight: lighter;
	}
	
	.banner-words p {
		font-size: 14px;
		margin: 10px auto;
		font-weight: lighter;
	}
	
	.banner_baise {
		width: 80px;
		height: 2px;
		background: #fff;
		margin: 25px 0;
		opacity: 0;
	}
	
	.anniu_btn_text{
		width: 100px;
		line-height: 40px;
		font-size: 14px;
		margin: 10px 0;
	}

}


@media screen and (max-width: 1200px) and (min-width: 0px) {

	.banner {
		position: relative;
		top: 0;
		left: 0;
		z-index: 1;
		width: 100vw;
		height: 100%;
	}

	.ban-imgpc,
	.ban-imgmb {
		width: 100%;
		object-fit: cover;
		height: 100%;
	}
}



.flex {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}




.swkc_scroll {
	position: fixed;
	bottom: 30%;
	right: 1%;
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	border-radius: 50%;
	text-align: center;
	cursor: pointer;
	display: none;
	z-index: 999999;
	background: #666;
	transition: all .6s;
}

.swkc_scroll:hover {
	background: #0c1d65;
}

.swkc_scroll:hover i {
	color: #fff;
}

.swkc_scroll i {
	font-size: 25px;
	color: #fff;
	line-height: 55px;
	cursor: pointer;
}







.footer {
	width: 100%;
	padding: 30px 0;
	background: #292c31;
	position: relative;
}

.footer .foot_tit {
	margin-bottom: 20px;
}

.footer .foot_tit span {
	color: #eee;
	font-size: 20px;
	font-weight: bold;
	display: block;
}

.footer .foot_tit i {
	font-size: 16px;
	font-weight: 100;
	color: #eee;
	font-style: normal;
	display: block;
}

.footer .foot_contact {
	width: 100%;
	width: 33.33%;
	float: left;
	
}

.footer .foot_contact .f_text p {
	margin-bottom: 0px;
}

.footer .foot_contact .f_text p em {
	color: #abacad;
	font-size: 16px;
	padding-left: 0;
	line-height: 32px;
	font-style: normal;
	display: block;
}

.footer .foot_contact .f_text i{
	margin-right: 5px;
}

.footer .foot_pro {
	width: 50%;
	float: left;
	padding-left: 50px;
}

.footer .foot_pro .f_pronav a {
	color: #abacad;
	font-size: 16px;
	line-height: 32px;
	width: 33.333%;
	float: left;
}

.footer .foot_ewm {
	width: 13%;
	height: auto;
	overflow: hidden;
	padding-left: 60px;
	float: right;
}

.footer .foot_ewm img {
	display: block;
	max-width: 110px;
	margin: 0px auto;
}

.footer .foot_ewm p {
	margin-top: 10px;
	margin-left: 4px;
	color: #abacad;
	font-size: 14px;
}

.copyright {
	width: 100%;
	position: relative;
	background: #1a1a1a;
	padding: 10px 0;
}

.copyright p {
	font-size: 14px;
	color: #fff;
	display: block;
	line-height: 24px;
	text-align: center;
}

.copyright p a {
	font-size: 14px;
	color: #fff;
}




@media screen and (max-width:1200px) {
	
	
	
	.footer {
		width: 100%;
		padding: 30px 0;
		background: #292c31;
		position: relative;
	}
	
	.footer .foot_tit {
		margin-bottom: 10px;
	}
	
	.footer .foot_tit span {
		color: #eee;
		font-size: 20px;
		font-weight: bold;
		display: block;
	}
	
	.footer .foot_tit i {
		font-size: 16px;
		font-weight: 100;
		color: #eee;
		font-style: normal;
		display: block;
	}
	
	.footer .foot_contact {
		width: 100%;
		width: 100%;
		float: left;
		
	}
	
	.footer .foot_contact .f_text p {
		margin-bottom: 0px;
	}
	
	.footer .foot_contact .f_text p em {
		color: #abacad;
		font-size: 14px;
		padding-left: 0;
		line-height: 28px;
		font-style: normal;
		display: block;
	}
	
	.footer .foot_contact .f_text i{
		margin-right: 5px;
	}
	
	.footer .foot_pro {
		display: none;
		
		width: 100%;
		float: left;
		padding-left: 50px;
	}
	
	.footer .foot_pro .f_pronav a {
		color: #abacad;
		font-size: 16px;
		line-height: 32px;
		width: 33.333%;
		float: left;
	}
	
	.footer .foot_ewm {
		width: 100%;
		height: auto;
		overflow: hidden;
		padding-left: 0px;
		float: right;
		margin-top: 30px;
	}
	
	.footer .foot_ewm img {
		display: block;
		max-width: 110px;
		margin: 0px auto;
	}
	
	.footer .foot_ewm p {
		margin-top: 10px;
		margin-left: 4px;
		color: #abacad;
		font-size: 14px;
	}
	
	.copyright {
		width: 100%;
		position: relative;
		background: #1a1a1a;
		padding: 10px 0;
	}
	
	.copyright p {
		font-size: 14px;
		color: #fff;
		display: block;
		line-height: 24px;
		text-align: center;
	}
	
	.copyright p a {
		font-size: 14px;
		color: #fff;
	}
	
	
}
	